@charset "utf-8";
/* CSS Document */


.container-fluid {
	padding: 0%;
	margin: 0%;
	
}

html {
	scroll-behavior: smooth;
}

/*---media---*/



/* Logo */

@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,700;0,800;0,900;1,400;1,800&display=swap);
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Montserrat', sans-serif;
    font-size: 62.5%;
    font-size: 8px;
	font-weight: 800;
}
/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
	z-index: 1;
}


.nav div.main_list {
    height: 65px;
    float: right;
	margin-left: auto;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    
    
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
   
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    font-size: 2.5rem;
	padding-right: 7rem;
}

.nav div.main_list ul li a:hover {
    color: #00E676;
}


/* Home section */

.home {
    background-image:url("Home page img/home page.jpg");
    background-position:center top fixed;
	background-size:cover;
	display:flex;
	background-repeat:no-repeat;
    background-attachment:scroll;
	margin: 0px;
	padding: 0px;
	padding-bottom: 301px;
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#logo {
	padding-left: 115px;
	margin-top: 10px;
	float: left;
	height: 45px;
}



/* Media qurey section */

@media screen and (min-width: 1080px) and (max-width: 1920px) {
    .container {
   
		margin-right: 40px;
    }
	
}

@media screen and (min-width: 1080px) and (max-width: 1080px) {
    .container {
        margin: 0;
    }
	
}

@media screen and (max-width:1550px) {
    .navTrigger {
        display: block;
    }
   
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color:transparent;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 2.4rem;
        padding: 20px;
		color:#000000;
    }
    .nav div.media_button {
        display: block;
    }
	
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: #111;
}



/* Title */

.text1 {
	margin-top: 454px;
	margin-left: 14%;
	font-family:'Montserrat', sans-serif,;
    font-size: 10em;
	font-weight: 900;
}

.text2 {
	
	margin-left: 14%;
	font-family:'Montserrat', sans-serif,;
    font-size: 3.5em;
	font-weight: 900;
}

.text3 {
	;
	margin-left: 14%;
	font-family:'Montserrat', sans-serif,;
    font-size: 3.5em;
	font-weight: 500;
	color:#FFFFFF;
}




/*----Button----*/
.button {
  border-radius: 50px;
  background-color:transparent;
  border:solid;
  text-align: center;
  font-size: 3em;
  padding: 5px;
  width: 300px;
  height: 50px; 
  transition: all 0.5s;
  cursor: pointer;
  font-family:'Montserrat', sans-serif,;
  font-weight: 500;	
}

.button_head {
	margin-left: 14%;
	margin-top: 10px;
	color:#000000;
}


.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
	color: #000000;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;

}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

/*-----Section 1-----*/

.section1 {
	align-content: center;
	text-align: center;
	padding: 10px;
	background-color: #E6E6E6;
	margin: 0% 0% 0% 0%;
	
}

.sec_title {
	font-size: 53px;
	font-weight: 900;
	text-align: center;
	margin-top: 123px;
	color: #000000;
	margin-bottom: 60px;
	
}


.sec1_text1 {
	
	font-size: 18px;
	text-align: center;
	font-weight: 500;
	margin: 0% 14% 0% 14%;
	color: #000000;
}

.button_sec1 {
	padding: 0px;
	color:#000000;
}

.button_sec1_1 {
	padding: 60px;
}

/*---- Feature Work ----*/

.feature_work {
	
  justify-content:center;
	padding: 0%;
	margin: 0%;
	margin-bottom: 40px;
}

.card {
 
  border-radius: 10px;
  background:#FFFFFF;
  transition: 0.4s ease-out;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  margin: 40px;
}

.card1 {
	width: 370px;
  height: 520px;
}

.card2 {
	
	width: 370px;
  height: 370px;
}
.card:hover {
  transform: translateY(20px);
}
.card:hover:before {
  opacity: 1;
}
.card:hover .info {
  opacity: 1;
  transform: translateY(0px);
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
}
.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}
.card .info {
  position: relative;
  z-index: 3;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
	align-content: center;
	padding: 40% 0% 40% 0%;
}

.card .info p {
  letter-spacing: 1px;
  font-size: 16px;
 text-align: center;
 font-weight: 400;
}

.sec2_head {
	font-size: 24px;
	text-align: center;
	
}

.button_sec2 {
	text-align: center;
	margin: 60px;
}

/*-----section 3-----*/


.section3 {
	background-image: url("Home page img/pages design-06.png");
	background-size:cover;
	background-repeat:no-repeat;
	text-align: center;
	margin: 0%;
	padding: 0%;
	width: 100%;
}

/*----form submission---*/
input:focus ~ label, textarea:focus ~ label, input:valid ~ label, textarea:valid ~ label {
    font-size: 1em;
    color: #999;
    top: -5px;
    -webkit-transition: all 0.225s ease;
    transition: all 0.225s ease;
	padding-top: 15px;
}

.styled-input {
    float: left;
    width: 293px;
    margin: 1.5rem 0;
    position: relative;
    border-radius: 4px;
}

.styled-input label {
    color: #999;
    padding: 1.3rem 30px 1rem 30px;
    position: absolute;
    top: 10px;
    left: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    pointer-events: none;
	font-size: 1.5rem;
}

.styled-input.wide { 
    width: 650px;
    max-width: 100%;
}

input,
textarea {
    padding: 30px;
    border: 0;
    width: 100%;
    font-size: 1.5rem;
    background-color: #2d2d2d;
    color: white;
    border-radius: 4px;
}

input:focus,
textarea:focus { outline: 0; }

input:focus ~ span,
textarea:focus ~ span {
    width: 100%;
    -webkit-transition: all 0.075s ease;
    transition: all 0.075s ease;
}

textarea {
    width: 100%;
    min-height: 20em;
	font-size: 1.5rem;
}

.input-container {
    width: 610px;
    max-width: 100%;
	  float:right;
	padding: 0%
}


input[type=checkbox] + label {
  color: #ccc;
  font-style: italic;
} 

input[type=checkbox]:checked + label {
  color: #f00;
  font-style:normal;
  
}

.formsubmission {
	margin: 5% 15% 8% auto;
}

.button_sec3 {
	margin-top: 20px;
	float: left;
}

/*----footer---*/

.footer {
	background-color: black;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	padding: 0%;
	margin:0%;
}

.footer_row1 {
	text-align: center;
	
}

.footer_row2 {
	padding: 0.5%;
}
.footer_row3 {
	font-weight: 300;
	font-size: 14px;
	padding: 40px;
	
	
}

.footer_row1 {
	padding: 50px;
}

#logo_footer {
	
	margin-right: -40px;
}

.footer a:hover {
    color: #00E676;
}

.footer a {
    color:#FFFFFF;
	text-decoration: none;
}


@media (max-width: 768px){
	
	#logo {
	}
	
	.formsubmission {
		float:inherit;

	}
		.styled-input {
			width: 100%;
		}
	.button_sec3 {
		text-align: center;
		float: none;
	}
	

	
	.button_head {
		float: none;
		text-align: center;
		margin-left: 4%;
	}
	
	.home {
	background-repeat:no-repeat;
	text-align: center;;
	width: 100%;
	}
	
	
}

@media (max-width: 1200px) {
	.button {
		align-content: center;
		float: none;
	}
	
	.button_head {
		float: none;
		text-align: center;
		margin-left: -4%;
	}
	
	.heading {
		text-align:center; 
	}

	.formsubmission {
		float:none;	
		margin: auto;

	}
		.styled-input {
			width: 100%;
		}
	.button_sec3 {
		text-align: center;
		float: none;
		margin: 60px;
		background-color: #FFFFFF;
	}
	
	.card1 {
	width: 270px;
  height: 420px;
}

.card2 {
	
  width: 270px;
  height: 270px;
}
	
}

@media (max-width: 1400px){
	
	.home {
		background-image: url("ai elements/pages design-10-10.png");
	}
}

@media (max-width: 1087px){
	
	.home {
		background-image:url("ai elements/pages design-11-11.png");
	}
	
	#title {
		align-content: center;
		text-align: center;
	}
	
}

@media (max-width: 575px){
	
		#title {
		align-content: center;
		text-align: center;
	}
	.text1 {
	margin-right: 14%;
}

.text2 {
	margin-right: 14%;
}

.text3 {
	margin-right: 14%;
}
	
.sec_title {
		font-size:450%;
		text-align: center;
	}	
	
}

@media (max-width: 408px) {

	
	.button {
		width: 70%;
		text-align: center;
		height: 30%;
		padding: 3%;
		font-size: 200%;
	}
}

@media (max-width: 470px){
	
		.text1 {
	margin-right: 14%;
			font-size: 600%;
}

	.sec_title {
		font-size:300%;
		text-align: center;
	}
	

.text2 {
	margin-right: 14%;
	font-size: 200%;
}

.text3 {
	margin-right: 14%;
	font-size: 200%;
}
	.button {
		width: 60%;
		text-align: center;
		height: 30%;
		padding: 3%;
		font-size: 200%;
	}
	
	.button_sec1 {
		width: 100%;
	}
	
}

@media (max-width: 547px) {

.button {
		width:200px;
		font-size:16px;
	}

}